home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Classicos / Pac Man white.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  290 b   |  15 lines

  1. stop();
  2. Stage.showMenu = false;
  3. this.onEnterFrame = function()
  4. {
  5.    var _l1 = this;
  6.    sofar = _l1.getBytesLoaded();
  7.    total = _l1.getBytesTotal();
  8.    Bar._width = int(sofar / total * 100);
  9.    if(sofar == total)
  10.    {
  11.       delete _l1.onEnterFrame;
  12.       nextFrame();
  13.    }
  14. };
  15.